home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / u_man / cat1 / ctrace.z / ctrace
Text File  |  1998-10-30  |  15KB  |  330 lines

  1.  
  2.  
  3.  
  4. CCCCTTTTRRRRAAAACCCCEEEE((((1111))))                      SSSSiiiilllliiiiccccoooonnnn GGGGrrrraaaapppphhhhiiiiccccssss                      CCCCTTTTRRRRAAAACCCCEEEE((((1111))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ctrace - C program debugger
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      ccccttttrrrraaaacccceeee [options] [file]
  13.  
  14. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  15.      The _c_t_r_a_c_e command allows you to follow the execution  of  a  C  program,
  16.      statement-by-statement.   The  effect  is  similar  to  executing a shell
  17.      procedure with the ----xxxx option.  _c_t_r_a_c_e reads the C  program  in  _f_i_l_e  (or
  18.      from  standard  input  if you do not specify _f_i_l_e), inserts statements to
  19.      print the text of  each  executable  statement  and  the  values  of  all
  20.      variables  referenced or modified, and writes the modified program to the
  21.      standard output.  You must put the output of _c_t_r_a_c_e into a temporary file
  22.      because  the  _c_c(1)  command  does not allow the use of a pipe.  You then
  23.      compile and execute this file.
  24.  
  25.      As each statement in the program  executes  it  will  be  listed  at  the
  26.      terminal,  followed  by the name and value of any variables referenced or
  27.      modified in the statement, followed by any  output  from  the  statement.
  28.      Loops  in  the trace output are detected and tracing is stopped until the
  29.      loop is exited or a different sequence of statements within the  loop  is
  30.      executed.  A warning message is printed every 1000 times through the loop
  31.      to help you detect infinite loops.  The trace output goes to the standard
  32.      output  so  you  can put it into a file for examination with an editor or
  33.      the _b_f_s(1) or _t_a_i_l(1) commands.
  34.  
  35.      The options commonly used are:
  36.  
  37.      ----ffff _f_u_n_c_t_i_o_n_s  Trace only these _f_u_n_c_t_i_o_n_s.
  38.      ----vvvv _f_u_n_c_t_i_o_n_s  Trace all but these _f_u_n_c_t_i_o_n_s.
  39.  
  40.      You may want to add to the default formats for printing variables.   Long
  41.      and pointer variables are always printed as signed integers.  Pointers to
  42.      character arrays are also  printed  as  strings  if  appropriate.   Char,
  43.      short,  and  int  variables  are  also printed as signed integers and, if
  44.      appropriate, as characters.  Double variables  are  printed  as  floating
  45.      point  numbers in scientific notation.  You can request that variables be
  46.      printed in additional formats, if appropriate, with these options:
  47.  
  48.      ----oooo     Octal
  49.      ----xxxx     Hexadecimal
  50.      ----uuuu     Unsigned
  51.      ----eeee     Floating point
  52.  
  53.      These options are used only in special circumstances:
  54.  
  55.      ----llll _n   Check  _n  consecutively  executed  statements  for  looping  trace
  56.             output,  instead of the default of 20.  Use 0 to get all the trace
  57.             output from loops.
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Page 1                           Release 6.4
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCTTTTRRRRAAAACCCCEEEE((((1111))))                      SSSSiiiilllliiiiccccoooonnnn GGGGrrrraaaapppphhhhiiiiccccssss                      CCCCTTTTRRRRAAAACCCCEEEE((((1111))))
  71.  
  72.  
  73.  
  74.      ----ssss     Suppress redundant trace output from simple assignment  statements
  75.             and string copy function calls.  This option can hide a bug caused
  76.             by use of the = operator in place of the == operator.
  77.      ----tttt _n   Trace _n variables per statement instead of the default of 10  (the
  78.             maximum  number  is 20).  The Diagnostics section explains when to
  79.             use this option.
  80.      ----PPPP     Run the C preprocessor on the input before tracing  it.   You  can
  81.             also use the ----DDDD, ----IIII, and ----UUUU _c_p_p(1) options.
  82.  
  83.      These options are used to tailor the  run-time  trace  package  when  the
  84.      traced program will run in a non-UNIX System environment:
  85.  
  86.      ----bbbb     Use only basic functions in the trace  code,  that  is,  those  in
  87.             _c_t_y_p_e(3C),   _p_r_i_n_t_f(3S),   and   _s_t_r_i_n_g(3C).   These  are  usually
  88.             available  even  in  cross-compilers  for   microprocessors.    In
  89.             particular,  this  option  is  needed when the traced program runs
  90.             under  an  operating  system  that  does   not   have   _s_i_g_n_a_l(2),
  91.             _f_f_l_u_s_h(3S), _l_o_n_g_j_m_p(3C), or _s_e_t_j_m_p(3C).
  92.      ----pppp _s_t_r_i_n_g
  93.             Change the trace print function from  the  default  of  'printf('.
  94.             For  example,  'fprintf(stderr,'  would  send  the  trace  to  the
  95.             standard error output.
  96.      ----rrrr _f   Use file _f in place of the _r_u_n_t_i_m_e._c trace function package.  This
  97.             lets  you  change  the  entire print function, instead of just the
  98.             name and leading arguments (see the ----pppp option).
  99.  
  100. EEEEXXXXAAAAMMMMPPPPLLLLEEEE
  101.      If the file _l_c._c contains this C program:
  102.  
  103.            1 #include <stdio.h>
  104.            2 main() /* count lines in input */
  105.            3 {
  106.            4   int c, nl;
  107.            5
  108.            6   nl = 0;
  109.            7   while ((c = getchar()) != EOF)
  110.            8        if (c = '\n')
  111.            9             ++nl;
  112.           10   printf("%d\n", nl);
  113.           11 }
  114.      and you enter these commands and test data:
  115.           cc lc.c
  116.           a.out
  117.           1
  118.           (cntl-d)
  119.      the program will be compiled and executed.  The output of the program
  120.      will be the number 2222, which is not correct because there is only one line
  121.      in the test data.  The error in this program is common, but subtle.  If
  122.      you invoke _c_t_r_a_c_e with these commands:
  123.           ctrace lc.c >temp.c
  124.           cc temp.c
  125.           a.out
  126.  
  127.  
  128.  
  129. Page 2                           Release 6.4
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. CCCCTTTTRRRRAAAACCCCEEEE((((1111))))                      SSSSiiiilllliiiiccccoooonnnn GGGGrrrraaaapppphhhhiiiiccccssss                      CCCCTTTTRRRRAAAACCCCEEEE((((1111))))
  137.  
  138.  
  139.  
  140.      the output will be:
  141.            2 main()
  142.            6   nl = 0;
  143.                /* nl == 0 */
  144.            7   while ((c = getchar()) != EOF)
  145.      The program is now waiting for input.  If you enter the same test data as
  146.      before, the output will be:
  147.                /* c == 49 or '1' */
  148.            8        if (c = '\n')
  149.                     /* c == 10 or '\n' */
  150.            9             ++nl;
  151.                          /* nl == 1 */
  152.            7   while ((c = getchar()) != EOF)
  153.                /* c == 10 or '\n' */
  154.            8        if (c = '\n')
  155.                     /* c == 10 or '\n' */
  156.            9             ++nl;
  157.                          /* nl == 2 */
  158.            7   while ((c = getchar()) != EOF)
  159.      If you now enter an end of file character (cntl-d) the final output will
  160.      be:
  161.                /* c == -1 */
  162.           10   printf("%d\n", nl);
  163.                /* nl == 2 */2
  164.                 return
  165.      Note that the program output printed at the end of the trace line for the
  166.      nnnnllll variable.  Also note the rrrreeeettttuuuurrrrnnnn comment added by _c_t_r_a_c_e at the end of
  167.      the trace output.  This shows the implicit return at the terminating
  168.      brace in the function.
  169.  
  170.      The trace output shows that variable cccc is assigned the value '1' in line
  171.      7, but in line 8 it has the value '\n'.  Once your attention is drawn to
  172.      this iiiiffff statement, you will probably realize that you used the assignment
  173.      operator (=) in place of the equality operator (==).  You can easily miss
  174.      this error during code reading.
  175.  
  176. EEEEXXXXEEEECCCCUUUUTTTTIIIIOOOONNNN----TTTTIIIIMMMMEEEE TTTTRRRRAAAACCCCEEEE CCCCOOOONNNNTTTTRRRROOOOLLLL
  177.      The default operation for _c_t_r_a_c_e is to trace the entire program file,
  178.      unless you use the ----ffff or ----vvvv options to trace specific functions.  This
  179.      does not give you statement-by-statement control of the tracing, nor does
  180.      it let you turn the tracing off and on when executing the traced program.
  181.  
  182.      You can do both of these by adding _c_t_r_o_f_f() and _c_t_r_o_n() function calls to
  183.      your program to turn the tracing off and on, respectively, at execution
  184.      time.  Thus, you can code arbitrarily complex criteria for trace control
  185.      with _i_f statements, and you can even conditionally include this code
  186.      because _c_t_r_a_c_e defines the CCCCTTTTRRRRAAAACCCCEEEE preprocessor variable.  For example:
  187.  
  188.           #ifdef CTRACE
  189.                if (c == '!' && i > 1000)
  190.                     ctron();
  191.           #endif
  192.  
  193.  
  194.  
  195. Page 3                           Release 6.4
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. CCCCTTTTRRRRAAAACCCCEEEE((((1111))))                      SSSSiiiilllliiiiccccoooonnnn GGGGrrrraaaapppphhhhiiiiccccssss                      CCCCTTTTRRRRAAAACCCCEEEE((((1111))))
  203.  
  204.  
  205.  
  206.      You can also control tracing from _d_b_x(1) if you compile with the ----gggg
  207.      option by turning trace on and off with the static variable tr_ct_..  For
  208.      example, to trace all but lines 7 to 10 in the main function, enter:
  209.  
  210.           dbx a.out
  211.           when at 7 { assign tr_ct_ = 0 }
  212.           when at 11 { assign tr_ct_ = 1 }
  213.           run
  214.  
  215.  
  216. DDDDIIIIAAAAGGGGNNNNOOOOSSSSTTTTIIIICCCCSSSS
  217.      This section contains diagnostic messages from both _c_t_r_a_c_e and _c_c(1),
  218.      since the traced code often gets some _c_c warning messages.  You can get
  219.      _c_c error messages in some rare cases, all of which can be avoided.
  220.  
  221.    ccccttttrrrraaaacccceeee DDDDiiiiaaaaggggnnnnoooossssttttiiiiccccssss
  222.      _w_a_r_n_i_n_g: _s_o_m_e _v_a_r_i_a_b_l_e_s _a_r_e _n_o_t _t_r_a_c_e_d _i_n _t_h_i_s _s_t_a_t_e_m_e_n_t
  223.           Only 10 variables are traced in a statement to prevent the C
  224.           compiler "out of tree space; simplify expression" error.  Use the ----tttt
  225.           option to increase this number.
  226.  
  227.      _w_a_r_n_i_n_g: _s_t_a_t_e_m_e_n_t _t_o_o _l_o_n_g _t_o _t_r_a_c_e
  228.           This statement is over 400 characters long.  Make sure that you are
  229.           using tabs to indent your code, not spaces.
  230.  
  231.      _c_a_n_n_o_t _h_a_n_d_l_e _p_r_e_p_r_o_c_e_s_s_o_r _c_o_d_e, _u_s_e -_P _o_p_t_i_o_n
  232.           This is usually caused by #ifdef/#endif preprocessor statements in
  233.           the middle of a C statement, or by a semicolon at the end of a
  234.           #define preprocessor statement.
  235.  
  236.      '_i_f ... _e_l_s_e _i_f' _s_e_q_u_e_n_c_e _t_o_o _l_o_n_g
  237.           Split the sequence by removing an eeeellllsssseeee from the middle.
  238.  
  239.      _p_o_s_s_i_b_l_e _s_y_n_t_a_x _e_r_r_o_r, _t_r_y -_P _o_p_t_i_o_n
  240.           Use the ----PPPP option to preprocess the _c_t_r_a_c_e input, along with any
  241.           appropriate ----DDDD, ----IIII, and ----UUUU preprocessor options.  If you still get
  242.           the error message, check the Warnings section below.
  243.  
  244.    CCCCcccc DDDDiiiiaaaaggggnnnnoooossssttttiiiiccccssss
  245.      _w_a_r_n_i_n_g: _i_l_l_e_g_a_l _c_o_m_b_i_n_a_t_i_o_n _o_f _p_o_i_n_t_e_r _a_n_d _i_n_t_e_g_e_r
  246.      _w_a_r_n_i_n_g: _s_t_a_t_e_m_e_n_t _n_o_t _r_e_a_c_h_e_d
  247.      _w_a_r_n_i_n_g: _s_i_z_e_o_f _r_e_t_u_r_n_s _0
  248.           Ignore these messages.
  249.  
  250.      _c_o_m_p_i_l_e_r _t_a_k_e_s _s_i_z_e _o_f _f_u_n_c_t_i_o_n
  251.           See the _c_t_r_a_c_e "possible syntax error" message above.
  252.  
  253.      _y_a_c_c _s_t_a_c_k _o_v_e_r_f_l_o_w
  254.           See the _c_t_r_a_c_e "'if ... else if' sequence too long" message above.
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261. Page 4                           Release 6.4
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. CCCCTTTTRRRRAAAACCCCEEEE((((1111))))                      SSSSiiiilllliiiiccccoooonnnn GGGGrrrraaaapppphhhhiiiiccccssss                      CCCCTTTTRRRRAAAACCCCEEEE((((1111))))
  269.  
  270.  
  271.  
  272.      _o_u_t _o_f _t_r_e_e _s_p_a_c_e; _s_i_m_p_l_i_f_y _e_x_p_r_e_s_s_i_o_n
  273.           Use the ----tttt option to reduce the number of traced variables per
  274.           statement from the default of 10.  Ignore the "ctrace: too many
  275.           variables to trace" warnings you will now get.
  276.  
  277.      _r_e_d_e_c_l_a_r_a_t_i_o_n _o_f _s_i_g_n_a_l
  278.           Either correct this declaration of _s_i_g_n_a_l(2), or remove it and
  279.           #include <signal.h>.
  280.  
  281. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  282.      bfs(1), dbx(1), tail(1), signal(2), ctype(3C), fclose(3S), printf(3S),
  283.      setjmp(3C), string(3C).
  284.  
  285. WWWWAAAARRRRNNNNIIIINNNNGGGGSSSS
  286.      You will get a _c_t_r_a_c_e syntax error if you omit the semicolon at the end
  287.      of the last element declaration in a structure or union, just before the
  288.      right brace (}).  This is optional in some C compilers.
  289.  
  290.      Defining a function with the same name as a system function may cause a
  291.      syntax error if the number of arguments is changed.  Just use a different
  292.      name.
  293.  
  294.      _c_t_r_a_c_e assumes that BADMAG is a preprocessor macro, and that EOF and NULL
  295.      are #defined constants.  Declaring any of these to be variables, e.g.,
  296.      "int EOF;", will cause a syntax error.
  297.  
  298. BBBBUUUUGGGGSSSS
  299.      _c_t_r_a_c_e does not know about the components of aggregates like structures,
  300.      unions, and arrays.  It cannot choose a format to print all the
  301.      components of an aggregate when an assignment is made to the entire
  302.      aggregate.  _c_t_r_a_c_e may choose to print the address of an aggregate or use
  303.      the wrong format (e.g., 3.149050e-311 for a structure with two integer
  304.      members) when printing the value of an aggregate.
  305.  
  306.      Pointer values are always treated as pointers to character strings.
  307.  
  308.      The loop trace output elimination is done separately for each file of a
  309.      multi-file program.  This can result in functions called from a loop
  310.      still being traced, or the elimination of trace output from one function
  311.      in a file until another in the same file is called.
  312.  
  313. FFFFIIIILLLLEEEESSSS
  314.      /usr/lib/ctrace/runtime.c          run-time trace package
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324. Page 5                           Release 6.4
  325.  
  326.  
  327.  
  328.